home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / c / GSMISC < prev    next >
Text File  |  1991-10-26  |  4KB  |  132 lines

  1. /* Copyright (C) 1989, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* gsmisc.c */
  21. /* Miscellaneous utilities for Ghostscript library */
  22. #include "gx.h"
  23. #include "malloc_.h"
  24.  
  25. /* Ghostscript writes to gs_out instead of stdout, */
  26. /* and writes debugging output to gs_debug_out. */
  27. FILE *gs_out;
  28. #ifdef DEBUG
  29. char gs_debug[128];
  30. FILE *gs_debug_out;
  31. #endif
  32.  
  33. /* Versions of malloc and free compatible with Ghostscript's */
  34. /* model of memory management.  We keep track of all allocated */
  35. /* blocks so we can free them at cleanup time. */
  36. typedef struct malloc_block_s malloc_block;
  37. struct malloc_block_s {
  38.     malloc_block *next;
  39.     uint size;
  40.     char *cname;
  41. };
  42. private malloc_block *malloc_list = 0;
  43. char *
  44. gs_malloc(uint num_elts, uint elt_size, char *client_name)
  45. {    char *ptr;
  46.     uint size;
  47.     if ( num_elts > (max_uint - sizeof(malloc_block)) / elt_size )
  48.        {    /* Can't represent the size in a uint! */
  49.         lprintf3("%s: malloc(%u,%u) too large for size_t\n",
  50.              client_name, num_elts, elt_size);
  51.         return 0;
  52.        }
  53.     size = num_elts * elt_size;
  54.     ptr = malloc(size + sizeof(malloc_block));
  55.     if ( ptr == 0 )
  56.        {
  57. #ifdef DEBUG
  58. if ( gs_debug['e'] | gs_debug['E'] )
  59.         lprintf3("%s: malloc(%u,%u) failed\n",
  60.              client_name, num_elts, elt_size);
  61. #endif
  62.        }
  63.     else
  64.        {    malloc_block *bp = (malloc_block *)ptr;
  65.         bp->next = malloc_list;
  66.         bp->size = size;
  67.         bp->cname = client_name;
  68.         malloc_list = bp;
  69.         ptr = (char *)(bp + 1);
  70. #ifdef DEBUG
  71. if ( gs_debug['A'] | gs_debug['a'] )
  72.         dprintf3("[a+]%lx:%u (%s)\n",
  73.              (ulong)ptr, bp->size, client_name);
  74.         /* Clear the block in an attempt to track down */
  75.         /* uninitialized data errors. */
  76.            {    uint i;
  77.             for ( i = 0; i < size; i++ ) ptr[i] = 0xa1;
  78.            }
  79. #endif
  80.        }
  81.     return ptr;
  82. }
  83. void
  84. gs_free(char *ptr, uint num_elts, uint elt_size, char *client_name)
  85. {    malloc_block *bp = malloc_list;
  86. #ifdef DEBUG
  87. if ( gs_debug['A'] | gs_debug['a'] )
  88.     dprintf2("[a-]%lx:%u\n", (ulong)ptr, num_elts * elt_size);
  89. #endif
  90.     if ( ptr == (char *)(bp + 1) )
  91.       {
  92. #ifdef DEBUG
  93.         if ( bp->size != num_elts * elt_size )
  94.           lprintf5("%s: free 0x%x(%u,%u) size ~= %u\n",
  95.                client_name, (ulong)ptr, num_elts, elt_size,
  96.                bp->size);
  97. #endif
  98.         malloc_list = bp->next;
  99.         free(bp);
  100.       }
  101.     else
  102.       { malloc_block *np;
  103.         for ( ; (np = bp->next) != 0; bp = np )
  104.           { if ( ptr == (char *)(np + 1) )
  105.           {
  106. #ifdef DEBUG
  107.             if ( np->size != num_elts * elt_size )
  108.               lprintf5("%s: free 0x%x(%u,%u) size ~= %u\n",
  109.                    client_name, (ulong)ptr, num_elts, elt_size,
  110.                    np->size);
  111. #endif
  112.             bp->next = np->next;
  113.             free(np);
  114.             return;
  115.           }
  116.           }
  117.         lprintf4("%s: free 0x%x(%u,%u) not found\n",
  118.              client_name, (ulong)ptr, num_elts, elt_size);
  119.         free((char *)((malloc_block *)ptr - 1));
  120.       }
  121. }
  122. void
  123. gs_malloc_release()
  124. {    malloc_block *bp = malloc_list;
  125.     malloc_block *np;
  126.     for ( ; bp != 0; bp = np )
  127.        {    np = bp->next;
  128.         free(bp);
  129.        }
  130.     malloc_list = 0;
  131. }
  132.